f1de1c75d042168c45b9d79baa71c052bfe41aa1,zul/src/org/zkoss/zul/Tabbox.java,Tabbox,isVertical,#,283

Before Change


	 * @since 3.0.3
	 */
	public boolean isVertical() {
		return "vertical".equals(getOrient());
	}
	
	public boolean isVerticalLeft() {

After Change


	 * @since 3.0.3
	 */
	public boolean isVertical() {
		String orient = getOrient();
		return "vertical".equals(orient) || "right".equals(orient) || "left".equals(orient);
	}
	
	/**